home *** CD-ROM | disk | FTP | other *** search
- on SPEAK
- set the movieRate of sprite 40 to 1.0
- end
-
- on checkKey
- set exit to 0
- if the commandDown and (the key = "q") then
- set exit to 1
- endMOVIE()
- end if
- if the commandDown and (the key = ".") then
- set exit to 1
- endMOVIE()
- end if
- end
-
- on SETV0
- global volume
- set volume to 0
- set the soundLevel to 0
- end
-
- on SETV1
- global volume
- set volume to 1
- set the soundLevel to 1
- end
-
- on SETV2
- global volume
- set volume to 2
- set the soundLevel to 2
- end
-
- on SETV3
- global volume
- set volume to 3
- set the soundLevel to 3
- end
-
- on SETV4
- global volume
- set volume to 4
- set the soundLevel to 4
- end
-
- on SETV5
- global volume
- set volume to 5
- set the soundLevel to 5
- end
-
- on SETV6
- global volume
- set volume to 6
- set the soundLevel to 6
- end
-
- on SETV7
- global volume
- set volume to 7
- set the soundLevel to 7
- end
-
- on GOFOCUS
- global n, DEST
- repeat with n = 48 down to 1
- puppetSprite(n, 0)
- set the visible of sprite n to 1
- end repeat
- go("OPEN", DEST & "FOCUS")
- end
-
- on GOFRICTION
- global n, DEST
- repeat with n = 48 down to 1
- puppetSprite(n, 0)
- set the visible of sprite n to 1
- end repeat
- go("OPEN", DEST & "FRICTION")
- end
-
- on GOFEATURES
- global n, DEST
- repeat with n = 48 down to 1
- puppetSprite(n, 0)
- set the visible of sprite n to 1
- end repeat
- go("OPEN", DEST & "FEATURES")
- end
-
- on GOFIXTURES
- global n, DEST
- repeat with n = 48 down to 1
- puppetSprite(n, 0)
- set the visible of sprite n to 1
- end repeat
- go("OPEN", DEST & "FIXTURES")
- end
-
- on GOCONTENTS
- global n, DEST
- repeat with n = 48 down to 1
- puppetSprite(n, 0)
- set the visible of sprite n to 1
- end repeat
- go("OPEN", DEST & "CONTENTS")
- end
-
- on GOMAP
- global n, DEST
- repeat with n = 48 down to 1
- puppetSprite(n, 0)
- set the visible of sprite n to 1
- end repeat
- go("MAP", DEST & "CONTENTS")
- end
-
- on GOPANIC
- global n, DEST
- repeat with n = 48 down to 1
- puppetSprite(n, 0)
- set the visible of sprite n to 1
- end repeat
- play frame "OPEN" of movie DEST & "PANIC"
- end
-